sub

pure function sub(start: integer): list<T>

Gets a sublist from the start index to the end of the list.

Since

0.6.0

Parameters

start

The start index of the sublist.


pure function sub(start: integer, end: integer): list<T>

Gets a sublist from the start index (inclusive) to the end index (exclusive).

Since

0.6.0

Parameters

start

The start index of the sublist.

end

The end index of the sublist (exclusive).